Creates a function that when called execute the path expression over the specified object.
Syntax
'Declaration
Public Overloads Shared Function CreateSelector(Of )( _
ByVal As System.Type, _
ByVal As System.String _
) As System.Func(Of Object,X)
public static System.Func<object,X> CreateSelector<>(
System.Type ,
System.string
)
Parameters
- type
- The type of the objects that will be passed to the resulting function.
- path
- The path that will be evaluated.
Type Parameters
- X
See Also